home *** CD-ROM | disk | FTP | other *** search
- //***********************************************************************
- //
- // CtlDemo1.h
- //
- //***********************************************************************
-
- class CMyApp : public CWinApp
- {
- public:
- virtual BOOL InitInstance ();
- };
-
- class CMainWindow : public CFrameWnd
- {
- private:
- CEdit m_ctlEdit;
-
- BOOL IsTextSelected ();
-
- public:
- CMainWindow ();
-
- protected:
- afx_msg int OnCreate (LPCREATESTRUCT);
- afx_msg void OnSize (UINT, int, int);
- afx_msg void OnSetFocus (CWnd*);
- afx_msg void OnFileNew ();
- afx_msg void OnFileExit ();
- afx_msg void OnEditUndo ();
- afx_msg void OnEditCut ();
- afx_msg void OnEditCopy ();
- afx_msg void OnEditPaste ();
- afx_msg void OnEditDelete ();
- afx_msg void OnUpdateEditUndoUI (CCmdUI*);
- afx_msg void OnUpdateEditCutUI (CCmdUI*);
- afx_msg void OnUpdateEditCopyUI (CCmdUI*);
- afx_msg void OnUpdateEditPasteUI (CCmdUI*);
- afx_msg void OnUpdateEditDeleteUI (CCmdUI*);
-
- DECLARE_MESSAGE_MAP ()
- };
-